home *** CD-ROM | disk | FTP | other *** search
/ Total Network Tools 2002 / NextStepPublishing-TotalNetworkTools2002-Win95.iso / Archive / Web Server / PHP.EXE / pear / DB / tests / mysql / connect.inc < prev    next >
Encoding:
Text File  |  2000-12-13  |  157 b   |  8 lines

  1. <?php
  2. require_once "DB.php";
  3. $dbh = DB::connect("mysql://localhost/test");
  4. if (DB::isError($dbh)) {
  5.     die("connect.inc: ".$dbh->getMessage());
  6. }
  7. ?>
  8.